From: John Wiegley Date: Fri, 14 Nov 2003 11:01:46 +0000 (+0000) Subject: (eshell-parse-variable-ref): Added a backslash that was optional, but X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~25001 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=a130b19231287298d013a908d605364c050b616a;p=emacs.git (eshell-parse-variable-ref): Added a backslash that was optional, but obviously missing based on surrounding code. --- diff --git a/lisp/eshell/esh-var.el b/lisp/eshell/esh-var.el index 3578b5d1ef6..fabcf367088 100644 --- a/lisp/eshell/esh-var.el +++ b/lisp/eshell/esh-var.el @@ -430,7 +430,7 @@ Possible options are: (eshell-parse-double-quote)))) (if name (list 'eshell-get-variable (eval name) 'indices)))) - ((eq (char-after) ?<) + ((eq (char-after) ?\<) (let ((end (eshell-find-delimiter ?\< ?\>))) (if (not end) (throw 'eshell-incomplete ?\<)